home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / regex_syntax.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  874b  |  24 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Constants for selecting regexp syntaxes for the obsolete regex module.
  5.  
  6. This module is only for backward compatibility.  "regex" has now
  7. been replaced by the new regular expression module, "re".
  8.  
  9. These bits are passed to regex.set_syntax() to choose among
  10. alternative regexp syntaxes.
  11. '''
  12. RE_NO_BK_PARENS = 1
  13. RE_NO_BK_VBAR = 2
  14. RE_BK_PLUS_QM = 4
  15. RE_TIGHT_VBAR = 8
  16. RE_NEWLINE_OR = 16
  17. RE_CONTEXT_INDEP_OPS = 32
  18. RE_ANSI_HEX = 64
  19. RE_NO_GNU_EXTENSIONS = 128
  20. RE_SYNTAX_AWK = RE_NO_BK_PARENS | RE_NO_BK_VBAR | RE_CONTEXT_INDEP_OPS
  21. RE_SYNTAX_EGREP = RE_SYNTAX_AWK | RE_NEWLINE_OR
  22. RE_SYNTAX_GREP = RE_BK_PLUS_QM | RE_NEWLINE_OR
  23. RE_SYNTAX_EMACS = 0
  24.